home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
PERL
/
MSDOS
/
GLOB.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-28
|
268b
|
18 lines
/*
* Globbing for MS-DOS. Relies on the expansion done by the library
* startup code. (dds)
*/
#include <stdio.h>
#include <string.h>
main(int argc, char *argv[])
{
register i;
for (i = 1; i < argc; i++) {
fputs(strlwr(argv[i]), stdout);
putchar(0);
}
}